Basic Library for WPF and Silverlight | ComponentOne
C1.Silverlight Namespace / C1SelectionManager.IsSelected<T> Delegate
The item to get the state

In This Topic
    C1SelectionManager.IsSelected<T> Delegate
    In This Topic
    Used to get the current state of an item (selected/unselected).
    Syntax
    'Declaration
     
    
    Public Delegate Function C1SelectionManager.IsSelected(Of T)( _
       ByVal item As T _
    ) As Boolean
    public delegate bool C1SelectionManager.IsSelected<T>( 
       T item
    )

    Parameters

    item
    The item to get the state

    Type Parameters

    T

    Return Value

    True if the item is selected, False otherwise
    See Also